home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBPatch.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  745 b   |  35 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. #import "RIBCommand.h"
  8.  
  9. @interface RIBPatch:RIBCommand
  10. {
  11.   char      *type;
  12.   RtBasis   uBasis;
  13.   RtToken   uBasisToken;
  14.   RtInt     uStep;
  15.   RtBasis   vBasis;
  16.   RtToken   vBasisToken;
  17.   RtInt     vStep;
  18.  
  19. }
  20.  
  21. - setType:(char *)newType
  22.      n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
  23.      printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
  24. - getBases;
  25.  
  26. - (const char *)type;
  27. - (RtBasis *)uBasis; 
  28. - (RtToken)uBasisToken; 
  29. - (RtInt)uStep; 
  30. - (RtBasis *)vBasis; 
  31. - (RtToken)vBasisToken; 
  32. - (RtInt)vStep; 
  33.  
  34. @end
  35.